home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / libsrc~1.z / libsrc~1 / gtty.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-28  |  126 b   |  11 lines

  1. #include "lib.h"
  2. #include <sgtty.h>
  3.  
  4. int gtty(fd, argp)
  5. int fd;
  6. struct sgttyb *argp;
  7. {
  8.   return ioctl(fd, TIOCGETP, argp);
  9. }
  10.  
  11.